- library allocator
- распределитель [блок распределения] с обращением к библиотеке (программ)
English-Russian dictionary of computer science and programming. 2013.
English-Russian dictionary of computer science and programming. 2013.
Standard Template Library — C++ Standard Library fstream iomanip ios iostream sstream string … Wikipedia
C dynamic memory allocation — C Standard Library Data types Character classification Strings Mathematics File input/output Date/time Localization … Wikipedia
Malloc — In computing, malloc is a subroutine provided in the C and C++ programming language s standard libraries for performing dynamic memory allocation. Rationale The C programming language manages memory either statically or automatically . Static… … Wikipedia
map (C++) — Not to be confused with Map (higher order function). C++ Standard Library fstream iomanip ios iostream sstre … Wikipedia
Slab allocation — is a memory management algorithm that juxtaposes objects of the same type. A slab allocator will not fragment memory, but a segment of memory (known as a slab ) may only store objects of a particular type, and free slots in a partially filled… … Wikipedia
Shared memory — In computing, shared memory is a memory that may be simultaneously accessed by multiple programs with an intent to provide communication among them or avoid redundant copies. Depending on context, programs may run on a single processor or on… … Wikipedia
Memory management — is the act of managing computer memory. The essential requirement of memory management is to provide ways to dynamically allocate portions of memory to programs at their request, and freeing it for reuse when no longer needed. This is critical to … Wikipedia
Garbage collection (computer science) — This article is about garbage collection in memory management. For garbage collection in an SSD, see garbage collection (SSD). For other uses, see garbage collection. In computer science, garbage collection (GC) is a form of automatic memory… … Wikipedia
Apache Struts — Struts Entwickler: Apache Software Foundation Aktuelle Version: 2.1.6 (13. Januar 2009) Betriebssystem: Cross platform … Deutsch Wikipedia
NetBSD — Company / developer The NetBSD Foundation OS family Unix like Working state Current So … Wikipedia
Dangling pointer — Dangling pointers and wild pointers in computer programming are pointers that do not point to a valid object of the appropriate type. These are special cases of memory safety violations. Dangling Pointer Dangling pointers arise when an object is… … Wikipedia